home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / STDDEF.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-17  |  174 b   |  11 lines

  1. #ifndef _LINUX_STDDEF_H
  2. #define _LINUX_STDDEF_H
  3.  
  4. #undef NULL
  5. #define NULL ((void *)0)
  6.  
  7. #undef offsetof
  8. #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  9.  
  10. #endif
  11.